home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 43 / Amiga Format CD43 (1999)(Future Publishing)(GB)(Track 1 of 2)[!][issue 1999-09].iso / -serious- / programming / c / pmm / pmm-startup < prev    next >
Text File  |  1999-06-14  |  2KB  |  55 lines

  1. ; $VER: PMM-Startup V1.1 (08.04.1999) by Michaela Prüß
  2. ; this is a complete startup-script for PMM
  3. ; written by Michaela Prüß in December 1998
  4. ; (c) 1998, 1999 by Michaela Prüß
  5.  
  6. ; if not startet from pmm-root-dir, absolut path must included
  7.  
  8. Assign PMM: ""
  9.  
  10. If not exists
  11.   MakeDir PMM:Err
  12.   MakeDir PMM:Developer/Lib
  13. EndIf
  14.  
  15. The next two assign's used by me for own includes and the
  16. sourcedir's. I think that I don't include anything that use
  17. this assigns. If I make an error and the called from everywhere
  18. you knwo the meaning of them now.
  19.  
  20. ; Assign include: vinclude:
  21. ; Assign proj: <my mainpath>
  22.  
  23. ; Add the dis with binaries and scripts to search-path
  24.  
  25. Path PMM: PMM:Bin PMM:Batch ADD
  26.  
  27.  
  28. ; Add the FD-Files (better copy them and forget this)
  29.  
  30. Assign FD: PMM:Developer/FD ADD
  31. Assign Lib: PMM:Developer/Lib
  32.  
  33. ; The next lines may be not useable for everybody. I include
  34. ; them only as demo what to do if Pmm is the only used tool
  35. ; on the system. I use them since the last makefile is deleted
  36. ; Remember: unalias unset any alias
  37. ;
  38. ; The commandreplace with alias is the best way to change them
  39. ; wihout really changes on the system. PmmLibr emulate both
  40. ; commands without problems. But "make <prog> ALL" don't work,
  41. ; that must write in Pmm-syntax as make <prog> -o all. The alias
  42. ; is because because I forget often to write the "new" command
  43. ;
  44. ; Make <name>      now uses Pmm
  45. ; Alib and Libr    now replaced with PmmLibr
  46.  
  47. Alias   Make    "Pmm -o 40 -q 88 -p "
  48. Alias   Alib    PmmLibr
  49. Alias   Libr    PmmLibr
  50.  
  51. ; if not set at other position these lines for PIPE
  52.  
  53. ; Set _mchar ","
  54. ; Set _pchar "|"
  55.